Exynos542x: Make A7s boot with thumb-mode U-Boot on warm reset
authorAkshay Saraswat <[email protected]>
Fri, 20 Feb 2015 07:57:19 +0000 (13:27 +0530)
committerMinkyu Kang <[email protected]>
Sat, 28 Feb 2015 09:03:46 +0000 (18:03 +0900)
commitc8fd8e66cdd9bf8b4fe78eaaa9bc1000fa60ae85
tree22219d85ae7922e4ac96f853924e619054bf2b70
parentcecf2db23b256d84ed54e1442b646f07373e5caa
Exynos542x: Make A7s boot with thumb-mode U-Boot on warm reset

On warm reset, all cores jump to the low_power_start function because iRAM
data is retained and because while executing iROM code all cores find
the jump flag 0x02020028 set. In low_power_start, cores check the reset
status and if true they clear the jump flag and jump back to 0x0.

The A7 cores do jump to 0x0 but consider following instructions as a Thumb
instructions which in turn makes them loop inside the iROM code instead of
jumping to power_down_core.

This issue is fixed by replacing the "mov pc" instruction with a "bx"
instruction which switches state along with the jump to make the execution
unit consider the branch target as an ARM instruction.

Signed-off-by: Akshay Saraswat <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Tested-by: Simon Glass <[email protected]>
Signed-off-by: Minkyu Kang <[email protected]>
arch/arm/cpu/armv7/exynos/lowlevel_init.c